home *** CD-ROM | disk | FTP | other *** search
GW-BASIC | 1992-06-22 | 648 b | 23 lines |
- 10 CLS:L$= "
- 20 INPUT "what is your name ";N$
- 30 INPUT "what is your hight ";H
- 40 INPUT "sex(M=Man or L=Lady) ";S$
- 50 IF S$="m"OR S$="M" THEN GOTO 80
- 60 IF S$="l" OR S$="F" THEN GOTO 120
- 70 PRINT "you entered the wrong word":GOTO 40
- 80 PRINT "mr";N$
- 90 PRINT"your ideal wight is";0.6*H-25;"kgs."
- 100 PRINT L$
- 110 GOTO 210
- 120 INPUT "single or married(s/m)";M$
- 130 IF M$="s"OR M$="s"THEN 180
- 140 PRINT"mrs.";N$
- 150 PRINT"your ideal weight is ";0.5*H-23;"kgs."
- 160 PRINT L$
- 170 GOTO 210
- 180 PRINT "miss ";N$
- 190 PRINT "your ideal weight is ";0.5*H-25;"kgs."
- 200 PRINT L$
- 210 INPUT "any more(y/n) ";M$
- 220 IF M$="y" THEN PRINT L$:PRINT:GOTO 20
-